home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\WHOIS.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  1KB  |  59 lines

  1. /*
  2.  * whois.h: header for whois.c 
  3.  *
  4.  * Written By Michael Sandrof
  5.  *
  6.  * Copyright(c) 1990 
  7.  *
  8.  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
  9.  *
  10.  * @(#)$Id: whois.h,v 1.6 1994/10/16 01:58:09 mrg Stab $
  11.  */
  12.  
  13. #ifndef __whois_h_
  14. # define __whois_h_
  15.  
  16. # ifdef USE_STDARG_H
  17. extern    void    add_to_whois_queue(char *, void (*)(), char *, ...);
  18. # else
  19. extern    void    add_to_whois_queue();
  20. # endif
  21. extern    void    add_ison_to_whois();
  22. extern    void    whois_name();
  23. extern    void    whowas_name();
  24. extern    void    whois_channels();
  25. extern    void    whois_server();
  26. extern    void    whois_oper();
  27. extern    void    whois_lastcom();
  28. extern    void    whois_nickname();
  29. extern    void    whois_ignore_msgs();
  30. extern    void    whois_ignore_notices();
  31. extern    void    whois_ignore_walls();
  32. extern    void    whois_ignore_invites();
  33. extern    void    whois_join();
  34. extern    void    whois_privmsg();
  35. extern    void    whois_notify();
  36. extern    void    whois_new_wallops();
  37. extern    void    clean_whois_queue();
  38. extern    void    set_beep_on_msg();
  39. extern    int    beep_on_level;
  40. extern  void    userhost_cmd_returned();
  41. extern    void    user_is_away();
  42. extern    void    userhost_returned();
  43. extern    void    ison_returned();
  44. extern    void    whois_chop();
  45. extern    void    end_of_whois();
  46. extern    void    whoreply();
  47. extern    void    convert_to_whois();
  48. extern    void    no_such_nickname();
  49.  
  50. extern    char    *redirect_format;
  51.  
  52. #define    WHOIS_WHOIS    0
  53. #define    WHOIS_ISON    1
  54. #define    WHOIS_USERHOST    2
  55.  
  56. #define    USERHOST_USERHOST ((void (*)()) 1)
  57.  
  58. #endif /* __whois_h_ */
  59.